home *** CD-ROM | disk | FTP | other *** search
/ Chip 2003 July / Chip_2003-07_cd1.bin / oddech / srp / Stress Relief Paintball.exe / scripts / frame_196 / DoAction.as
Text File  |  2002-07-26  |  491b  |  20 lines

  1. hitrate = Math.round(hits / totalshots * 100);
  2. if(isNaN(hitrate))
  3. {
  4.    hitrate = 0;
  5. }
  6. messages.level = "Level " + level;
  7. messages.score = "your score: " + score;
  8. messages.shots = "shots fired: " + actualshots;
  9. messages.hitrate = "your hit rate: " + hitrate + "%";
  10. if(50 < hitrate)
  11. {
  12.    messages.message = "nice shooting time for the next level";
  13. }
  14. else
  15. {
  16.    messages.message = "oh dear ! you didn\'t shoot well enough for the next round";
  17.    blnGameOver = true;
  18. }
  19. stop();
  20.